home *** CD-ROM | disk | FTP | other *** search
/ Spawn Figure Collection / spawn collection cd.iso / movies / amazing.dir / 00038_Script_38 < prev   
Text File  |  1998-01-13  |  339b  |  18 lines

  1. on ButtonAnim
  2.   repeat with t = 2 to 5
  3.     set the puppet of sprite(t) to TRUE
  4.     if rollover(t) then
  5.       set the blend of sprite(t) to 100  
  6.     else
  7.       set the blend of sprite(t) to 0
  8.     end if
  9.   end repeat
  10. end
  11.  
  12. on ResetPuppet
  13.   repeat with t = 2 to 5
  14.     set the puppet of sprite(t) to FALSE  
  15.   end repeat
  16. end
  17.  
  18.